@font-face {
	font-family: dot; /* set name */
	src: url(Doto-VariableFont_ROND,wght.ttf); /* url of the font */
}

body {
	font-family: dot;
	background-color: black;
	color: white;
	
}

h1 {
	font-size: 100px;
	font-weight: bold;
	margin: 20px;
	color: #fc03e3;
	/* background-color: white; */
}

a {
	color: #fcfc03;
}

a:hover {
	color: red;
}

.title {
	background-color: red;
	padding-left: 200px;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 3;
}

p {
	/* color: red; */
}

ul {
	color: #fcfc03;
}

#navigation {
	posistion: absolute;
	width: 170px;
	font-weight: bold;
	background-color: #1303fc;
	margin: 160px 0px 0 12px;
	padding: 5px 0px 15px 0;
	color: #fcfc03;
	z-index: 2;
}

#navigation h3 {
	text-align: center;
}

#navigation img {
	display: block;
	margin: auto;
	padding-bottom: 10px;
}

#content {
	position: absolute;
	left: 220px;
	right: 20px;
	top: 160px;
	padding: 0 10px;
	background-color: lime;
	z-index: 1;
	color: black;
	font-size: 16px;
	font-weight: bold;
	text-align: justify;
}

#content h3 {
	color: black;
	background-color: yellow;
	padding: 0 0 0 10px;
}

#content p {
	
}

#content img {
  display: block;
  justify-content: center;
}

.post {
	text-indent: 20px;
}
	





